Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | import { appGetLayout } from "components/AppRoute";
import GroupChatsTab from "features/messages/groupchats/GroupChatsTab";
import GroupChatView from "features/messages/groupchats/GroupChatView";
import MessagesHeader from "features/messages/MessagesHeader";
import HostRequestView from "features/messages/requests/HostRequestView";
import RequestsTab from "features/messages/requests/RequestsTab";
import NotFoundPage from "features/NotFoundPage";
import { GLOBAL, MESSAGES, NOTIFICATIONS } from "i18n/namespaces";
import { translationStaticProps } from "i18n/server-side-translations";
import { GetStaticPaths, GetStaticProps } from "next";
import { useRouter } from "next/router";
import { ReactNode } from "react";
import { messageTypeStrings } from "routes";
export const getStaticPaths: GetStaticPaths = () => ({
paths: [],
fallback: "blocking",
});
export const getStaticProps: GetStaticProps = translationStaticProps([
GLOBAL,
MESSAGES,
NOTIFICATIONS,
]);
export default function LeaveReferencePage() {
const router = useRouter();
const slugs =
typeof router.query.slug === "undefined"
? ["chats"]
: typeof router.query.slug === "string"
? [router.query.slug]
: router.query.slug;
let content: ReactNode;
const tab = messageTypeStrings.find((valid) => valid === slugs?.[0]);
if (slugs[0] === "chats") {
const id = Number.parseInt(slugs?.[1]);
if (isNaN(id)) {
content = <GroupChatsTab />;
} else {
content = <GroupChatView chatId={id} />;
}
} else if (slugs[0] === "request") {
const id = Number.parseInt(slugs?.[1]);
if (isNaN(id)) {
return <NotFoundPage />;
} else {
content = <HostRequestView hostRequestId={id} />;
}
} else if (slugs[0] === "hosting") content = <RequestsTab type="hosting" />;
else if (slugs[0] === "surfing") content = <RequestsTab type="surfing" />;
return (
<>
{!slugs[1] && <MessagesHeader tab={tab} />}
{content}
</>
);
}
LeaveReferencePage.getLayout = appGetLayout({
variant: "full-width",
noFooter: true,
});
|